summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/viewholders/GameViewHolder.java
blob: 2dc0f34f399330f36b0309f5dce0c80b16100ab2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package org.yuzu.yuzu_emu.viewholders;

import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;

import androidx.recyclerview.widget.RecyclerView;

import org.yuzu.yuzu_emu.R;

/**
 * A simple class that stores references to views so that the GameAdapter doesn't need to
 * keep calling findViewById(), which is expensive.
 */
public class GameViewHolder extends RecyclerView.ViewHolder {
    private View itemView;
    public ImageView imageIcon;
    public TextView textGameTitle;
    public TextView textCompany;
    public TextView textFileName;

    public String gameId;

    // TODO Not need any of this stuff. Currently only the properties dialog needs it.
    public String path;
    public String title;
    public String description;
    public String regions;
    public String company;

    public GameViewHolder(View itemView) {
        super(itemView);

        this.itemView = itemView;
        itemView.setTag(this);

        imageIcon = itemView.findViewById(R.id.image_game_screen);
        textGameTitle = itemView.findViewById(R.id.text_game_title);
        textCompany = itemView.findViewById(R.id.text_company);
        textFileName = itemView.findViewById(R.id.text_filename);
    }

    public View getItemView() {
        return itemView;
    }
}